home *** CD-ROM | disk | FTP | other *** search
/ AP Professional Graphics CD-ROM Library / AP Professional Graphics CD-ROM Library.iso / mac / Macintosh / Appendix / GemsIII / Source Code Gems III / exttest / Makefile < prev   
Encoding:
Makefile  |  1995-03-08  |  205 b   |  12 lines  |  [TEXT/MSWD]

  1. # code is C++
  2. CFLAGS =
  3.  
  4. ehtest1:    ehtest1.C exthit.o exthit.h
  5.     CC $(CFLAGS) -o ehtest1 ehtest1.C exthit.o
  6.  
  7. exthit.o:    exthit.C exthit.h
  8.     CC $(CFLAGS) -c exthit.C -o exthit.o
  9.  
  10. clean:
  11.     rm -rf ehtest1 exthit.o
  12.